home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / hewitt.swf / scripts / DefineSprite_796 / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  487 b   |  18 lines

  1. stop();
  2. stopAllSounds();
  3. onEnterFrame = function()
  4. {
  5.    if(_root.men._currentframe == 1)
  6.    {
  7.       _root.bytesLoaded = _root.getBytesLoaded();
  8.       _root.bytesTotal = _root.getBytesTotal();
  9.       percentLoaded = Math.round(10000 * (_root.bytesLoaded / _root.bytesTotal)) / 100;
  10.       _root.men.bar.gotoAndStop(percentLoaded);
  11.       _root.percent = percentLoaded + "%";
  12.       if(_root.bytesLoaded >= _root.bytesTotal)
  13.       {
  14.          _root.men.play();
  15.       }
  16.    }
  17. };
  18.